home *** CD-ROM | disk | FTP | other *** search
/ Bath / Bath CDROM.iso / pc / BATH.DXR / Topbar_48.ls < prev    next >
Encoding:
Text File  |  2001-07-26  |  635 b   |  28 lines

  1. global currentFullScreen
  2.  
  3. on mouseWithin
  4.   if (member(the member of sprite 13).type <> #quickTimeMedia) and ((the member of sprite 13).type <> #flash) then
  5.     set the cursor of sprite 13 to 280
  6.     if the lastRoll > 60 then
  7.       sprite(68).visible = 1
  8.       set the loc of sprite 68 to the mouseLoc
  9.     end if
  10.   else
  11.     set the cursor of sprite 13 to 0
  12.     pass()
  13.   end if
  14. end
  15.  
  16. on mouseLeave
  17.   sprite(68).visible = 0
  18. end
  19.  
  20. on mouseUp me
  21.   if (the member of sprite me.spriteNum).type = #bitmap then
  22.     cursor(-1)
  23.     currentFullScreen = (the member of sprite me.spriteNum).name
  24.     hideMap()
  25.     go("ViewFullScreenPic")
  26.   end if
  27. end
  28.